home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / amos / amoslist.lzh / AMOSLIST / 000150_amos-request@svcs1.digex.net_Sat Sep 9 17:05:05 1995.msg < prev    next >
Internet Message Format  |  1995-10-02  |  2KB

  1. Received: from svcs1.digex.net (svcs1.digex.net [204.91.197.224]) by mail1.access.digex.net (8.6.12/8.6.12) with ESMTP id RAA15327;  for <mcox@access.digex.net> ; Sat, 9 Sep 1995 17:05:04 -0400
  2. Received: (from daemon@localhost) by svcs1.digex.net (8.6.12/8.6.12) id PAA05319 for amos-out; Sat, 9 Sep 1995 15:36:14 -0400
  3. Received: from mail1.access.digex.net (mail1.access.digex.net [205.197.247.2]) by svcs1.digex.net (8.6.12/8.6.12) with ESMTP id PAA05316 for <amos-list@svcs1.digex.net>; Sat, 9 Sep 1995 15:36:13 -0400
  4. Received: from andrew.cmu.edu (ANDREW.CMU.EDU [128.2.10.101]) by mail1.access.digex.net (8.6.12/8.6.12) with ESMTP id PAA09973;  for <amos-list@access.digex.net> ; Sat, 9 Sep 1995 15:36:12 -0400
  5. Received: from dragon.res.cmu.edu (DRAGON.RES.CMU.EDU [128.2.93.39]) by andrew.cmu.edu (8.6.12/8.6.12) with SMTP id PAA05905 for <amos-list@access.digex.net>; Sat, 9 Sep 1995 15:36:10 -0400
  6. From: achurch@dragon.res.cmu.edu (Andy Church)
  7. To: amos-list@access.digex.net
  8. Subject: Re: anim help
  9. Date: Sat Sep 09 15:35:54 1995
  10. Message-ID: <199509091535.AA01522@dragon.res.cmu.edu>
  11. X-Mailer: MMail v4.31
  12. Status: RO
  13. X-Status: 
  14.  
  15. >Can anyone convert the following into Amos code, as I don't yet have AMCAF
  16.  
  17. [...]
  18.  
  19. >Examine Object F$
  20.  
  21.   This would be the DOS Examine() call, and this:
  22.  
  23. >OS=Object Size :Rem Whats this in standard Amos
  24.  
  25. would get the size of the file.  Instead of those two lines, you can use:
  26. Open In 1,F$ : OS=Lof(1) : Close 1
  27.  
  28. >Loke ST+OS,Asc.l("FORM"):Rem What's Asc.l in standard Amos
  29.  
  30.   Just use Poke$ ST+OS,"FORM".
  31.  
  32.   --Andy Church (.sig under reconstruction)